home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / rexec.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  23KB  |  641 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Restricted execution facilities.
  5.  
  6. The class RExec exports methods r_exec(), r_eval(), r_execfile(), and
  7. r_import(), which correspond roughly to the built-in operations
  8. exec, eval(), execfile() and import, but executing the code in an
  9. environment that only exposes those built-in operations that are
  10. deemed safe.  To this end, a modest collection of \'fake\' modules is
  11. created which mimics the standard modules by the same names.  It is a
  12. policy decision which built-in modules and operations are made
  13. available; this module provides a reasonable default, but derived
  14. classes can change the policies e.g. by overriding or extending class
  15. variables like ok_builtin_modules or methods like make_sys().
  16.  
  17. XXX To do:
  18. - r_open should allow writing tmp dir
  19. - r_exec etc. with explicit globals/locals? (Use rexec("exec ... in ...")?)
  20.  
  21. '''
  22. import sys
  23. import __builtin__
  24. import os
  25. import ihooks
  26. import imp
  27. __all__ = [
  28.     'RExec']
  29.  
  30. class FileBase:
  31.     ok_file_methods = ('fileno', 'flush', 'isatty', 'read', 'readline', 'readlines', 'seek', 'tell', 'write', 'writelines', 'xreadlines', '__iter__')
  32.  
  33.  
  34. class FileWrapper(FileBase):
  35.     
  36.     def __init__(self, f):
  37.         for m in self.ok_file_methods:
  38.             if not hasattr(self, m) and hasattr(f, m):
  39.                 setattr(self, m, getattr(f, m))
  40.                 continue
  41.         
  42.  
  43.     
  44.     def close(self):
  45.         self.flush()
  46.  
  47.  
  48. TEMPLATE = '\ndef %s(self, *args):\n        return getattr(self.mod, self.name).%s(*args)\n'
  49.  
  50. class FileDelegate(FileBase):
  51.     
  52.     def __init__(self, mod, name):
  53.         self.mod = mod
  54.         self.name = name
  55.  
  56.     for m in FileBase.ok_file_methods + ('close',):
  57.         exec TEMPLATE % (m, m)
  58.     
  59.  
  60.  
  61. class RHooks(ihooks.Hooks):
  62.     
  63.     def __init__(self, *args):
  64.         verbose = 0
  65.         rexec = None
  66.         if args and type(args[-1]) == type(0):
  67.             verbose = args[-1]
  68.             args = args[:-1]
  69.         
  70.         if args and hasattr(args[0], '__class__'):
  71.             rexec = args[0]
  72.             args = args[1:]
  73.         
  74.         if args:
  75.             raise TypeError, 'too many arguments'
  76.         
  77.         ihooks.Hooks.__init__(self, verbose)
  78.         self.rexec = rexec
  79.  
  80.     
  81.     def set_rexec(self, rexec):
  82.         self.rexec = rexec
  83.  
  84.     
  85.     def get_suffixes(self):
  86.         return self.rexec.get_suffixes()
  87.  
  88.     
  89.     def is_builtin(self, name):
  90.         return self.rexec.is_builtin(name)
  91.  
  92.     
  93.     def init_builtin(self, name):
  94.         m = __import__(name)
  95.         return self.rexec.copy_except(m, ())
  96.  
  97.     
  98.     def init_frozen(self, name):
  99.         raise SystemError, "don't use this"
  100.  
  101.     
  102.     def load_source(self, *args):
  103.         raise SystemError, "don't use this"
  104.  
  105.     
  106.     def load_compiled(self, *args):
  107.         raise SystemError, "don't use this"
  108.  
  109.     
  110.     def load_package(self, *args):
  111.         raise SystemError, "don't use this"
  112.  
  113.     
  114.     def load_dynamic(self, name, filename, file):
  115.         return self.rexec.load_dynamic(name, filename, file)
  116.  
  117.     
  118.     def add_module(self, name):
  119.         return self.rexec.add_module(name)
  120.  
  121.     
  122.     def modules_dict(self):
  123.         return self.rexec.modules
  124.  
  125.     
  126.     def default_path(self):
  127.         return self.rexec.modules['sys'].path
  128.  
  129.  
  130. RModuleLoader = ihooks.FancyModuleLoader
  131. RModuleImporter = ihooks.ModuleImporter
  132.  
  133. class RExec(ihooks._Verbose):
  134.     '''Basic restricted execution framework.
  135.  
  136.     Code executed in this restricted environment will only have access to
  137.     modules and functions that are deemed safe; you can subclass RExec to
  138.     add or remove capabilities as desired.
  139.  
  140.     The RExec class can prevent code from performing unsafe operations like
  141.     reading or writing disk files, or using TCP/IP sockets.  However, it does
  142.     not protect against code using extremely large amounts of memory or
  143.     processor time.
  144.  
  145.     '''
  146.     ok_path = tuple(sys.path)
  147.     ok_builtin_modules = ('audioop', 'array', 'binascii', 'cmath', 'errno', 'imageop', 'marshal', 'math', 'md5', 'operator', 'parser', 'regex', 'select', 'sha', '_sre', 'strop', 'struct', 'time', '_weakref')
  148.     ok_posix_names = ('error', 'fstat', 'listdir', 'lstat', 'readlink', 'stat', 'times', 'uname', 'getpid', 'getppid', 'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
  149.     ok_sys_names = ('byteorder', 'copyright', 'exit', 'getdefaultencoding', 'getrefcount', 'hexversion', 'maxint', 'maxunicode', 'platform', 'ps1', 'ps2', 'version', 'version_info')
  150.     nok_builtin_names = ('open', 'file', 'reload', '__import__')
  151.     ok_file_types = (imp.C_EXTENSION, imp.PY_SOURCE)
  152.     
  153.     def __init__(self, hooks = None, verbose = 0):
  154.         """Returns an instance of the RExec class.
  155.  
  156.         The hooks parameter is an instance of the RHooks class or a subclass
  157.         of it.  If it is omitted or None, the default RHooks class is
  158.         instantiated.
  159.  
  160.         Whenever the RExec module searches for a module (even a built-in one)
  161.         or reads a module's code, it doesn't actually go out to the file
  162.         system itself.  Rather, it calls methods of an RHooks instance that
  163.         was passed to or created by its constructor.  (Actually, the RExec
  164.         object doesn't make these calls --- they are made by a module loader
  165.         object that's part of the RExec object.  This allows another level of
  166.         flexibility, which can be useful when changing the mechanics of
  167.         import within the restricted environment.)
  168.  
  169.         By providing an alternate RHooks object, we can control the file
  170.         system accesses made to import a module, without changing the
  171.         actual algorithm that controls the order in which those accesses are
  172.         made.  For instance, we could substitute an RHooks object that
  173.         passes all filesystem requests to a file server elsewhere, via some
  174.         RPC mechanism such as ILU.  Grail's applet loader uses this to support
  175.         importing applets from a URL for a directory.
  176.  
  177.         If the verbose parameter is true, additional debugging output may be
  178.         sent to standard output.
  179.  
  180.         """
  181.         raise RuntimeError, 'This code is not secure in Python 2.2 and 2.3'
  182.         ihooks._Verbose.__init__(self, verbose)
  183.         if not hooks:
  184.             pass
  185.         self.hooks = RHooks(verbose)
  186.         self.hooks.set_rexec(self)
  187.         self.modules = { }
  188.         self.ok_dynamic_modules = self.ok_builtin_modules
  189.         list = []
  190.         for mname in self.ok_builtin_modules:
  191.             if mname in sys.builtin_module_names:
  192.                 list.append(mname)
  193.                 continue
  194.         
  195.         self.ok_builtin_modules = tuple(list)
  196.         self.set_trusted_path()
  197.         self.make_builtin()
  198.         self.make_initial_modules()
  199.         self.make_sys()
  200.         self.loader = RModuleLoader(self.hooks, verbose)
  201.         self.importer = RModuleImporter(self.loader, verbose)
  202.  
  203.     
  204.     def set_trusted_path(self):
  205.         self.trusted_path = filter(os.path.isabs, sys.path)
  206.  
  207.     
  208.     def load_dynamic(self, name, filename, file):
  209.         if name not in self.ok_dynamic_modules:
  210.             raise ImportError, 'untrusted dynamic module: %s' % name
  211.         
  212.         if name in sys.modules:
  213.             src = sys.modules[name]
  214.         else:
  215.             src = imp.load_dynamic(name, filename, file)
  216.         dst = self.copy_except(src, [])
  217.         return dst
  218.  
  219.     
  220.     def make_initial_modules(self):
  221.         self.make_main()
  222.         self.make_osname()
  223.  
  224.     
  225.     def get_suffixes(self):
  226.         return _[1]
  227.  
  228.     
  229.     def is_builtin(self, mname):
  230.         return mname in self.ok_builtin_modules
  231.  
  232.     
  233.     def make_builtin(self):
  234.         m = self.copy_except(__builtin__, self.nok_builtin_names)
  235.         m.__import__ = self.r_import
  236.         m.reload = self.r_reload
  237.         m.open = m.file = self.r_open
  238.  
  239.     
  240.     def make_main(self):
  241.         m = self.add_module('__main__')
  242.  
  243.     
  244.     def make_osname(self):
  245.         osname = os.name
  246.         src = __import__(osname)
  247.         dst = self.copy_only(src, self.ok_posix_names)
  248.         dst.environ = e = { }
  249.         for key, value in os.environ.items():
  250.             e[key] = value
  251.         
  252.  
  253.     
  254.     def make_sys(self):
  255.         m = self.copy_only(sys, self.ok_sys_names)
  256.         m.modules = self.modules
  257.         m.argv = [
  258.             'RESTRICTED']
  259.         m.path = map(None, self.ok_path)
  260.         m.exc_info = self.r_exc_info
  261.         m = self.modules['sys']
  262.         l = self.modules.keys() + list(self.ok_builtin_modules)
  263.         l.sort()
  264.         m.builtin_module_names = tuple(l)
  265.  
  266.     
  267.     def copy_except(self, src, exceptions):
  268.         dst = self.copy_none(src)
  269.         for name in dir(src):
  270.             setattr(dst, name, getattr(src, name))
  271.         
  272.         for name in exceptions:
  273.             
  274.             try:
  275.                 delattr(dst, name)
  276.             continue
  277.             except AttributeError:
  278.                 continue
  279.             
  280.  
  281.         
  282.         return dst
  283.  
  284.     
  285.     def copy_only(self, src, names):
  286.         dst = self.copy_none(src)
  287.         for name in names:
  288.             
  289.             try:
  290.                 value = getattr(src, name)
  291.             except AttributeError:
  292.                 continue
  293.  
  294.             setattr(dst, name, value)
  295.         
  296.         return dst
  297.  
  298.     
  299.     def copy_none(self, src):
  300.         m = self.add_module(src.__name__)
  301.         m.__doc__ = src.__doc__
  302.         return m
  303.  
  304.     
  305.     def add_module(self, mname):
  306.         m = self.modules.get(mname)
  307.         if m is None:
  308.             self.modules[mname] = m = self.hooks.new_module(mname)
  309.         
  310.         m.__builtins__ = self.modules['__builtin__']
  311.         return m
  312.  
  313.     
  314.     def r_exec(self, code):
  315.         """Execute code within a restricted environment.
  316.  
  317.         The code parameter must either be a string containing one or more
  318.         lines of Python code, or a compiled code object, which will be
  319.         executed in the restricted environment's __main__ module.
  320.  
  321.         """
  322.         m = self.add_module('__main__')
  323.         exec code in m.__dict__
  324.  
  325.     
  326.     def r_eval(self, code):
  327.         """Evaluate code within a restricted environment.
  328.  
  329.         The code parameter must either be a string containing a Python
  330.         expression, or a compiled code object, which will be evaluated in
  331.         the restricted environment's __main__ module.  The value of the
  332.         expression or code object will be returned.
  333.  
  334.         """
  335.         m = self.add_module('__main__')
  336.         return eval(code, m.__dict__)
  337.  
  338.     
  339.     def r_execfile(self, file):
  340.         """Execute the Python code in the file in the restricted
  341.         environment's __main__ module.
  342.  
  343.         """
  344.         m = self.add_module('__main__')
  345.         execfile(file, m.__dict__)
  346.  
  347.     
  348.     def r_import(self, mname, globals = { }, locals = { }, fromlist = []):
  349.         '''Import a module, raising an ImportError exception if the module
  350.         is considered unsafe.
  351.  
  352.         This method is implicitly called by code executing in the
  353.         restricted environment.  Overriding this method in a subclass is
  354.         used to change the policies enforced by a restricted environment.
  355.  
  356.         '''
  357.         return self.importer.import_module(mname, globals, locals, fromlist)
  358.  
  359.     
  360.     def r_reload(self, m):
  361.         '''Reload the module object, re-parsing and re-initializing it.
  362.  
  363.         This method is implicitly called by code executing in the
  364.         restricted environment.  Overriding this method in a subclass is
  365.         used to change the policies enforced by a restricted environment.
  366.  
  367.         '''
  368.         return self.importer.reload(m)
  369.  
  370.     
  371.     def r_unload(self, m):
  372.         """Unload the module.
  373.  
  374.         Removes it from the restricted environment's sys.modules dictionary.
  375.  
  376.         This method is implicitly called by code executing in the
  377.         restricted environment.  Overriding this method in a subclass is
  378.         used to change the policies enforced by a restricted environment.
  379.  
  380.         """
  381.         return self.importer.unload(m)
  382.  
  383.     
  384.     def make_delegate_files(self):
  385.         s = self.modules['sys']
  386.         self.delegate_stdin = FileDelegate(s, 'stdin')
  387.         self.delegate_stdout = FileDelegate(s, 'stdout')
  388.         self.delegate_stderr = FileDelegate(s, 'stderr')
  389.         self.restricted_stdin = FileWrapper(sys.stdin)
  390.         self.restricted_stdout = FileWrapper(sys.stdout)
  391.         self.restricted_stderr = FileWrapper(sys.stderr)
  392.  
  393.     
  394.     def set_files(self):
  395.         if not hasattr(self, 'save_stdin'):
  396.             self.save_files()
  397.         
  398.         if not hasattr(self, 'delegate_stdin'):
  399.             self.make_delegate_files()
  400.         
  401.         s = self.modules['sys']
  402.         s.stdin = self.restricted_stdin
  403.         s.stdout = self.restricted_stdout
  404.         s.stderr = self.restricted_stderr
  405.         sys.stdin = self.delegate_stdin
  406.         sys.stdout = self.delegate_stdout
  407.         sys.stderr = self.delegate_stderr
  408.  
  409.     
  410.     def reset_files(self):
  411.         self.restore_files()
  412.         s = self.modules['sys']
  413.         self.restricted_stdin = s.stdin
  414.         self.restricted_stdout = s.stdout
  415.         self.restricted_stderr = s.stderr
  416.  
  417.     
  418.     def save_files(self):
  419.         self.save_stdin = sys.stdin
  420.         self.save_stdout = sys.stdout
  421.         self.save_stderr = sys.stderr
  422.  
  423.     
  424.     def restore_files(self):
  425.         sys.stdin = self.save_stdin
  426.         sys.stdout = self.save_stdout
  427.         sys.stderr = self.save_stderr
  428.  
  429.     
  430.     def s_apply(self, func, args = (), kw = { }):
  431.         self.save_files()
  432.         
  433.         try:
  434.             self.set_files()
  435.             r = func(*args, **kw)
  436.         finally:
  437.             self.restore_files()
  438.  
  439.         return r
  440.  
  441.     
  442.     def s_exec(self, *args):
  443.         """Execute code within a restricted environment.
  444.  
  445.         Similar to the r_exec() method, but the code will be granted access
  446.         to restricted versions of the standard I/O streams sys.stdin,
  447.         sys.stderr, and sys.stdout.
  448.  
  449.         The code parameter must either be a string containing one or more
  450.         lines of Python code, or a compiled code object, which will be
  451.         executed in the restricted environment's __main__ module.
  452.  
  453.         """
  454.         return self.s_apply(self.r_exec, args)
  455.  
  456.     
  457.     def s_eval(self, *args):
  458.         """Evaluate code within a restricted environment.
  459.  
  460.         Similar to the r_eval() method, but the code will be granted access
  461.         to restricted versions of the standard I/O streams sys.stdin,
  462.         sys.stderr, and sys.stdout.
  463.  
  464.         The code parameter must either be a string containing a Python
  465.         expression, or a compiled code object, which will be evaluated in
  466.         the restricted environment's __main__ module.  The value of the
  467.         expression or code object will be returned.
  468.  
  469.         """
  470.         return self.s_apply(self.r_eval, args)
  471.  
  472.     
  473.     def s_execfile(self, *args):
  474.         """Execute the Python code in the file in the restricted
  475.         environment's __main__ module.
  476.  
  477.         Similar to the r_execfile() method, but the code will be granted
  478.         access to restricted versions of the standard I/O streams sys.stdin,
  479.         sys.stderr, and sys.stdout.
  480.  
  481.         """
  482.         return self.s_apply(self.r_execfile, args)
  483.  
  484.     
  485.     def s_import(self, *args):
  486.         '''Import a module, raising an ImportError exception if the module
  487.         is considered unsafe.
  488.  
  489.         This method is implicitly called by code executing in the
  490.         restricted environment.  Overriding this method in a subclass is
  491.         used to change the policies enforced by a restricted environment.
  492.  
  493.         Similar to the r_import() method, but has access to restricted
  494.         versions of the standard I/O streams sys.stdin, sys.stderr, and
  495.         sys.stdout.
  496.  
  497.         '''
  498.         return self.s_apply(self.r_import, args)
  499.  
  500.     
  501.     def s_reload(self, *args):
  502.         '''Reload the module object, re-parsing and re-initializing it.
  503.  
  504.         This method is implicitly called by code executing in the
  505.         restricted environment.  Overriding this method in a subclass is
  506.         used to change the policies enforced by a restricted environment.
  507.  
  508.         Similar to the r_reload() method, but has access to restricted
  509.         versions of the standard I/O streams sys.stdin, sys.stderr, and
  510.         sys.stdout.
  511.  
  512.         '''
  513.         return self.s_apply(self.r_reload, args)
  514.  
  515.     
  516.     def s_unload(self, *args):
  517.         """Unload the module.
  518.  
  519.         Removes it from the restricted environment's sys.modules dictionary.
  520.  
  521.         This method is implicitly called by code executing in the
  522.         restricted environment.  Overriding this method in a subclass is
  523.         used to change the policies enforced by a restricted environment.
  524.  
  525.         Similar to the r_unload() method, but has access to restricted
  526.         versions of the standard I/O streams sys.stdin, sys.stderr, and
  527.         sys.stdout.
  528.  
  529.         """
  530.         return self.s_apply(self.r_unload, args)
  531.  
  532.     
  533.     def r_open(self, file, mode = 'r', buf = -1):
  534.         """Method called when open() is called in the restricted environment.
  535.  
  536.         The arguments are identical to those of the open() function, and a
  537.         file object (or a class instance compatible with file objects)
  538.         should be returned.  RExec's default behaviour is allow opening
  539.         any file for reading, but forbidding any attempt to write a file.
  540.  
  541.         This method is implicitly called by code executing in the
  542.         restricted environment.  Overriding this method in a subclass is
  543.         used to change the policies enforced by a restricted environment.
  544.  
  545.         """
  546.         mode = str(mode)
  547.         if mode not in ('r', 'rb'):
  548.             raise IOError, "can't open files for writing in restricted mode"
  549.         
  550.         return open(file, mode, buf)
  551.  
  552.     
  553.     def r_exc_info(self):
  554.         (ty, va, tr) = sys.exc_info()
  555.         tr = None
  556.         return (ty, va, tr)
  557.  
  558.  
  559.  
  560. def test():
  561.     import getopt as getopt
  562.     import traceback as traceback
  563.     (opts, args) = getopt.getopt(sys.argv[1:], 'vt:')
  564.     verbose = 0
  565.     trusted = []
  566.     for o, a in opts:
  567.         if o == '-v':
  568.             verbose = verbose + 1
  569.         
  570.         if o == '-t':
  571.             trusted.append(a)
  572.             continue
  573.     
  574.     r = RExec(verbose = verbose)
  575.     if trusted:
  576.         r.ok_builtin_modules = r.ok_builtin_modules + tuple(trusted)
  577.     
  578.     if args:
  579.         r.modules['sys'].argv = args
  580.         r.modules['sys'].path.insert(0, os.path.dirname(args[0]))
  581.     else:
  582.         r.modules['sys'].path.insert(0, '')
  583.     fp = sys.stdin
  584.     if args and args[0] != '-':
  585.         
  586.         try:
  587.             fp = open(args[0])
  588.         except IOError:
  589.             msg = None
  590.             print "%s: can't open file %r" % (sys.argv[0], args[0])
  591.             return 1
  592.         except:
  593.             None<EXCEPTION MATCH>IOError
  594.         
  595.  
  596.     None<EXCEPTION MATCH>IOError
  597.     if fp.isatty():
  598.         
  599.         try:
  600.             import readline
  601.         except ImportError:
  602.             pass
  603.  
  604.         import code
  605.         
  606.         class RestrictedConsole(code.InteractiveConsole):
  607.             
  608.             def runcode(self, co):
  609.                 self.locals['__builtins__'] = r.modules['__builtin__']
  610.                 r.s_apply(code.InteractiveConsole.runcode, (self, co))
  611.  
  612.  
  613.         
  614.         try:
  615.             RestrictedConsole(r.modules['__main__'].__dict__).interact()
  616.         except SystemExit:
  617.             n = None
  618.             return n
  619.         except:
  620.             None<EXCEPTION MATCH>SystemExit
  621.         
  622.  
  623.     None<EXCEPTION MATCH>SystemExit
  624.     text = fp.read()
  625.     fp.close()
  626.     c = compile(text, fp.name, 'exec')
  627.     
  628.     try:
  629.         r.s_exec(c)
  630.     except SystemExit:
  631.         n = None
  632.         return n
  633.     except:
  634.         traceback.print_exc()
  635.         return 1
  636.  
  637.  
  638. if __name__ == '__main__':
  639.     sys.exit(test())
  640.  
  641.